home *** CD-ROM | disk | FTP | other *** search
- .key PATTERN/A,DEST/A,INTEL/S
- .bra {
- .ket }
-
- ; This script can convert many CDDA images to Studio 16 files based
- ; on pattern matching.
- ;
- ; $VER: CDDA2StudioBatch 2.0 (17.11.97)
- ; By Kenneth "Kenny" Nilsen (kenny@bgnett.no)
- ;
- ; USAGE: CDDA2StudioBatch <pattern> <destpath/name> [INTEL]
- ;
- ; NOTE: The commands must be in the command search path. To be safe
- ; copy the commands in C: or add the path where you keep the commands to
- ; the global search path (startup-sequence: path <path> ADD).
-
- ;-- convert files
-
- if {INTEL}
- list {PATTERN} files lformat="echo *"Processing file '%N'...*"*nCDDA2Studio %P%N {DEST} -i" >t:tmp.16
- else
- list {PATTERN} files lformat="echo *"Processing file '%N'...*"*nCDDA2Studio %P%N {DEST}" >t:tmp.16
- endif
-
- echo "Converting CDDA to Studio 16.. please wait!"
-
- execute t:tmp.16
-
- delete t:tmp.16 >nil:
- delete env:s16cmd >nil:
-
- echo "Done"
-
- lab Final
-